home *** CD-ROM | disk | FTP | other *** search
/ Archive Magazine CD 1995 / Archive Magazine CD 1995.iso / discs / prog_disc / volume_3 / issue04 / c / c_4_6 < prev    next >
Encoding:
Text File  |  1989-12-11  |  276 b   |  14 lines

  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main( int argc, char *argv[] )
  5.     {
  6.     char line[100];
  7.     while (fgets( line, 100, stdin ))
  8.         {
  9.         int i = strlen( line );
  10.         while (--i) fputc( line[i-1], stdout );
  11.         fputc( '\n', stdout );
  12.         }
  13.     }
  14.